home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / windownt / wpj1_8.zip / HOOKS.ZIP / WINSWAT.H < prev    next >
C/C++ Source or Header  |  1993-08-18  |  573b  |  24 lines

  1. #ifdef __cplusplus
  2. extern "C" {            /* Assume C declarations for C++ */
  3. #endif
  4.  
  5. #ifdef SWATDLL
  6. void WINAPI _export InitialiseSwat(BOOL, HWND);
  7. DWORD CALLBACK _export KeyboardHook(int nCode, WPARAM wParam, LPARAM lParam);
  8. DWORD CALLBACK _export MouseHook(int nCode, WPARAM wParam, LPARAM lParam);
  9. #endif
  10.  
  11. #ifdef WINSWAT
  12. void WINAPI InitialiseSwat(BOOL, HWND);
  13. #endif
  14.  
  15. #define dllver 01
  16. #define KILLBUTN 11
  17. #define TERMBUTN 12
  18. #define CANLBUTN 13
  19. #define WAKESIGL 100
  20.  
  21. #ifdef __cplusplus
  22. }                       /* End of extern "C" { */
  23. #endif
  24.